home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Premiere 4.2 SDK r3 Mac / Examples / Projects / Additive Dissolve / Additive Dissolve.r < prev   
Text File  |  1996-01-25  |  2KB  |  55 lines

  1. //========================================================================================
  2. //
  3. // Additive Dissolve.r - Resources for the additive dissolve transition.
  4. //
  5. // Written by Randy Ubillos and Bryan K. "Beaker" Ressler.
  6. //
  7. // Copyright ⌐ 1993-96, Adobe Systems Incorporated, all rights reserved worldwide.
  8. //
  9. // Version    1.00    10/20/93    Original version.
  10. // Version    1.01    9/12/94        Updated for 4.0.
  11. // Version  1.02    10/6/95     Updated for 4.2 and CW7.
  12. //
  13. //========================================================================================
  14.  
  15. //========================================================================================
  16. // Includes
  17. //========================================================================================
  18. #include "PremiereBasic.r"
  19.  
  20. //========================================================================================
  21. // Transition description
  22. //========================================================================================
  23. resource 'TEXT' (1000, "Description") {
  24.     "Image A fades into image B."
  25. };
  26.  
  27. //========================================================================================
  28. // Effect version
  29. //========================================================================================
  30. resource 'FXvs' (1000, "Version") {
  31.     1
  32. };
  33.  
  34. //========================================================================================
  35. // Transition options
  36. //========================================================================================
  37. resource 'Fopt' (1000) {
  38.     0b00000000,        // Valid mask (none)
  39.     0b00000000,        // Initial values (none)
  40.     No,                // Pairs?
  41.     No,                // Exclusive?
  42.     No,                // Has Reverse?
  43.     No,                // Has Edges?
  44.     No,                // Has Start?
  45.     No                // Has End?
  46. };
  47.  
  48. //========================================================================================
  49. // Mapping of this Transition to the SMPTE-standard 19 (the valid four-byte codes are
  50. // listed in PremiereBasic.h).
  51. //========================================================================================
  52. resource 'FXDF' (-1) {
  53.     'DISS';
  54. };
  55.